home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / base / 006-devel.lzm / usr / include / X11 / CreateI.h < prev    next >
Encoding:
C/C++ Source or Header  |  2007-02-14  |  1.3 KB  |  38 lines

  1. /* $XFree86$ */
  2.  
  3. #ifndef _XtcreateI_h
  4. #define _XtcreateI_h
  5.  
  6. extern Widget _XtCreateWidget(String name, WidgetClass widget_class,
  7.                   Widget parent, ArgList args, Cardinal num_args,
  8.                   XtTypedArgList typed_args,
  9.                   Cardinal num_typed_args);
  10. extern Widget _XtCreatePopupShell(String name, WidgetClass widget_class,
  11.                   Widget parent, ArgList args,
  12.                   Cardinal num_args, XtTypedArgList typed_args,
  13.                   Cardinal num_typed_args);
  14. extern Widget _XtAppCreateShell(String name, String class,
  15.                 WidgetClass widget_class, Display *display,
  16.                 ArgList args, Cardinal num_args,
  17.                 XtTypedArgList typed_args,
  18.                 Cardinal num_typed_args);
  19. extern Widget _XtCreateHookObj(Screen *screen);
  20.  
  21.  
  22. #include <stdarg.h>
  23.  
  24. /* VarCreate.c */
  25. extern Widget _XtVaOpenApplication(XtAppContext *app_context_return,
  26.             _Xconst char* application_class,
  27.             XrmOptionDescList options, Cardinal num_options,
  28.             int *argc_in_out, String *argv_in_out,
  29.             String *fallback_resources, WidgetClass widget_class,
  30.             va_list var_args);
  31. extern Widget _XtVaAppInitialize(XtAppContext *app_context_return,
  32.             _Xconst char* application_class,
  33.             XrmOptionDescList options, Cardinal num_options,
  34.             int *argc_in_out, String *argv_in_out,
  35.             String *fallback_resources, va_list var_args);
  36.  
  37. #endif /* _XtcreateI_h */
  38.